home *** CD-ROM | disk | FTP | other *** search
/ PC World Interactive 7 / PC World Interactive 7.iso / program / ctutor.exe / SOURCE / VIDEO.H < prev    next >
Text File  |  1994-05-15  |  2KB  |  46 lines

  1. /* VIDEO.H - header file for the Visual Calculator                 */
  2. /* Copyright (c) 1994 Coronado Enterprises                         */
  3.  
  4. #define BLANK   (unsigned char)32
  5. #define HORIZ   (unsigned char)205
  6. #define VERT    (unsigned char)186
  7. #define U_LEFT  (unsigned char)201
  8. #define U_RIGHT (unsigned char)187
  9. #define L_LEFT  (unsigned char)200
  10. #define L_RIGHT (unsigned char)188
  11. #define T_DOWN  (unsigned char)203
  12. #define T_LEFT  (unsigned char)185
  13. #define T_RIGHT (unsigned char)204
  14. #define T_UP    (unsigned char)202
  15.  
  16.  
  17. /* prototypes for functions in VIDEO.C                             */
  18. void monitor(void);     /* determine the type of monitor           */
  19. void bkgndvid(void);    /* display video background                */
  20.                         /* display all values                      */
  21. void valusvid(struct vars *allvars);
  22.                         /* display the new changed variable        */
  23. void disnew(int varinuse, struct vars *allvars);
  24. void helpm(void);       /* display mathematics help messages       */
  25. void helps(void);       /* display system help messages            */
  26. void linedisp(int line);/* display a line to video (with attr)     */
  27.                         /* display a line with value attr          */
  28. void strngdis_val(int row, int col);
  29.                         /* display a line with help attr           */
  30. void strngdis_help(int row, int col);
  31.                         /* display a line with trns attr           */
  32. void strngdis_trns(int row, int col);
  33.                         /* display a line (add attr)               */
  34. void strngdis(int row, int col, int attr);
  35.                         /* outputs blanks to a video line          */
  36. void blnkline(int row, int col);
  37.                         /* display single character with trns attr */
  38. void chardis_trns(int row, int col, int ch);
  39.                         /* display single character                */
  40. void chardis(int row, int col, int attr, int ch);
  41. void errdis(char str[]);/* display error message to screen         */
  42. void clrscrn(void);     /* clear the video monitor                 */
  43.                         /* position the cursor on the monitor      */
  44. void poscurs(int row, int col);
  45. int prtprblm(void);     /* printer problem check                   */
  46.